home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Internet Warrior 1993 July
/
Internet Warrior No. 1 July 1993 - Austin Code Works.ISO
/
tools
/
archives
/
splint.arc
/
makefile.bsd
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Makefile
|
1989-04-12
|
308 b
|
15 lines
#
# Makefile for splint/UNIX
#
all: splint
splint: splay.o splint.o getopt.o
cc -O -DBSD -o splint splay.o splint.o getopt.o
splay.o: splay.c splint.h
cc -O -DBSD -c splay.c
splint.o: splint.c splint.h getopt.h
cc -O -DBSD -c splint.c
getopt.o: getopt.c getopt.h
cc -O -DBSD -c getopt.c